home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / gcc / Makefile < prev    next >
Encoding:
Makefile  |  1989-09-04  |  460 b   |  17 lines

  1. #
  2. # If your system has a system include file "alloca.h", make sure there
  3. # is no file by that name in this directory (rename it to alloca.h.dummy).
  4. # If your system doesn't define the include file "alloca.h", make sure a
  5. # dummy version exists in this directory (raname alloca.h.dummy to
  6. # alloca.h if alloca.h isn't here already).
  7.  
  8. OBJS =        gcc.o obstack.o version.o
  9.  
  10. CFLAGS =    -O
  11.  
  12. ../bin/gcc:    $(OBJS)
  13.     $(CC) $(OBJS) -o ../bin/gcc
  14.  
  15. clean:
  16.     rm -f *.o ../bin/gcc
  17.